home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / comm / tcp / topic.lha / topicdemo.amirx < prev   
Text File  |  1997-01-26  |  2KB  |  69 lines

  1. /* Random topic creator... */
  2. /* Well, it's a random topic creator. it's not really that good ;)  I'm
  3. trying to update the way that the script address putting the topic to the
  4. channel..  and add some more topics ;)  Any ideas welcome at
  5. bradley@bradman.demon.co.uk or visit me WWW page at
  6. www.bradman.demon.co.uk     Seeya l8r all! */
  7.  
  8. parse arg args
  9. options results
  10. signal on syntax
  11.  
  12. getmynick;mynick=result
  13.  
  14. sq="'";dq='"'
  15.  
  16. /* Topics */
  17.  
  18. topic.1 = "Today is a good day to die..."
  19. topic.2 = ""dq"Maybe today IS a good day to die..."dq""
  20. topic.3 = "Apology is Policy"
  21. topic.4 = "Today is the day after yesterday and the day before tommorow"
  22. topic.5 = "Random Topic Creator ©Bradley Smith"
  23. topic.6 = "Madness is a form of wisdom :)"
  24. topic.7 = "The world IS your Oyster"
  25. topic.8 = "Make it so"
  26. topic.9 = "Too many cooks spoil the broth"
  27. topic.10 = "She sells sea shells on the sea shore"
  28. topic.11 = "The second cup of tea is never as good as the first"
  29. topic.12 = "If life is like a box of chocolates, who gets all the hazelnut whirls?"
  30. topic.13 = "C'est la vie!"
  31. topic.14 = "The more it changes - the more it is/stays the same!"
  32. topic.15 = "When it rains - it pours"
  33. topic.16 = "Greetings!"
  34. topic.17 = "The Amiga Dead? hahahahah Yeah right!"
  35. topic.18 = ""dq"Raindrops keep falling on my head.. ;) "dq" "
  36. topic.19 = "Life is how ya make it"
  37. topic.20 = "Live long and Prosper"
  38. topic.21 = "Time sure flies by when you are having fun :)"
  39. topic.22 = "THE TRUTH IS OUT THERE®"
  40. topic.23 = ""dq"CARPE DIEM"dq" - Latin for Seize the Day"
  41. topic.24 = "Engage!"
  42. topic.24 = "Life is indifferent"
  43. topic.25 = "To be.. or not to be, that is the question."
  44. topic.26 = ""
  45.  
  46. /* End of Topics... please gimmie some ideas! */
  47.  
  48. call RANDOM(,,TIME("S"))
  49. picked = RANDOM(1,26)
  50.    TOPIC = topic.picked
  51.  
  52.  
  53. 'say 'mynick' is now using topic.amirx by Bradman'
  54. 'say Please send a mail to bradley@bradman.demon.co.uk saying hello to
  55.  recieve the full version of this script without this message :P'
  56. 'say /topic 'TOPIC
  57.  
  58. exit
  59.  
  60. /* Error bit */
  61.  
  62. syntax:
  63. 'echo error on line 'sigl
  64. exit
  65.  
  66. /* The end :) */
  67.  
  68.  
  69.